home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Misc / FLM / otherfiles / english / ARexx / take.rexx < prev    next >
OS/2 REXX Batch file  |  2000-01-01  |  880b  |  25 lines

  1. /* This script takes translation from FLM and send it at your editor/word
  2.    processor which writes it under the current cursor position */
  3.  
  4. Options RESULTS
  5.  
  6. Address FLM TAKEWORD
  7.  
  8. /* Now translation is in the variable RESULT */
  9.  
  10. If Symbol('RESULT')='LIT' Then Exit /* Test if a word has really been
  11.                                        returned. */
  12.  
  13. Address <adr> <command> RESULT  /* send contents of variable RESULT to
  14.                                    your editor/word processor */
  15. /* For <adr> you must add the ARexx address of your program and for
  16.    <command> you must add the command which sends word under the current
  17.    cursor position.
  18.  
  19.    Ex. Address EDWARD InsertChars RESULT
  20.  
  21.    It's also possible to drop 'Address' + 'Program address port' because 
  22.    normally these are given as default values. Therefore e.g. you could
  23.    only indicate "InsertChars RESULT".
  24. */
  25.